home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
001
/
qmodmous.arc
/
M_QMODEM.MSC
next >
Wrap
Text File
|
1986-03-07
|
4KB
|
130 lines
;
; QModem Menu Configuration
;
Comment (' Qmodem mouse button assignments')
Comment (' LEFT: Menu selection')
Comment (' RIGHT: <ESC>')
Comment (' BOTH LEFT & RIGHT')
Comment (' or MIDDLE:')
Comment (' <CR>')
;
; Parameters
;
Sensitivity (5, 8) ; (Xinc, Yinc)
Hysteresis (2, 2) ; (AutoX, AutoY)
ReverseVideo (no) ; Menu is displayed in reverse video
FixedMenu (no) ; Menu is in a fixed position
EnableBeep (no) ; No Beeps if wrong button pressed with menu up
ExitMenu ("Return") ; To leave menu
;
; Cursor Definitions: NONE
;
;
; Button Definitions
;
LB: Button (Menu(Main)) ; Left button, Main Menu
MB: Button (Keys([Enter])) ; Middle button: CR
LRB: Button (Keys([Enter])) ; R+L Buttons: CR
RB: Button (Keys([Esc])) ; Right button: Esc
;
; Menu Definitions
;
Exit: Menu
(
Position (LowerCenter(40,40))
Title ("Exit Qmodem")
Item ("Yes", Keys("Y"))
Item ("No", Keys("N"))
Item ("Leave with modem on",keys("X"))
)
Main: Menu
(
Position (UpperRight(79,0))
Title ("Primary Menu")
Item ("Clear Screen", Keys([a-C]))
Item ("Dial Phone", Keys([a-D]))
Item ("Script Execution", Keys([a-F]))
Item ("Hang-Up Phone", Keys([a-H]))
Item ("Change Baud Rates", Keys([a-P]))
Item ("Redial Last Number", Keys([a-Q]))
Item ("DOS Shell", Keys([a-R]))
Item ("Disk Directory", Keys([a-W]))
Item ("Exit Qmodem", Keys([a-X]), Menu(exit))
Item ("Secondary Menu", Menu(Second))
; common items
Item ("Toggles Menu", Menu(Toggle))
Item ("Download Files", Keys([PgDn]))
Item ("Upload Files", Keys([PgUp]))
Item ("Capture File toggle", Keys([c-Home]))
Item ("Scroll Back", Keys([Up]))
Item ("Send Break", keys([c-End]))
Item ("Line Feed toggle", keys([s-Tab]))
Item ("Printer echo toggle", Keys([c-PrtSc]))
)
;
; Secondary Menu
;
Second: Menu
(
Position (UpperRight(79,0))
Title ("Secondary Menu")
Item ("Translate Table", Keys([a-A]))
Item ("Set Function Keys", Keys([a-J]))
Item ("Log Drive change", keys([a-L]))
Item ("Change Sub-Dirs", keys([a-O]))
Item ("View a file", keys([a-V]))
Item ("Delete a File", keys([a-Y]))
Item ("Primary Menu", Menu(Main))
; common items
Item ("Toggles Menu", Menu(Toggle))
Item ("Download Files", Keys([PgDn]))
Item ("Upload Files", Keys([PgUp]))
Item ("Capture File toggle", Keys([c-Home]))
Item ("Scroll Back", Keys([Up]))
Item ("Send Break", keys([c-End]))
Item ("Line Feed toggle", keys([s-Tab]))
Item ("Printer echo toggle", Keys([c-PrtSc]))
)
;
; Toggle menu
;
Toggle: Menu
(
Position (UpperRight(79,0))
Title ("Toggles Menu")
Item ("Beeps and Bells", Keys([a-B]))
Item ("Echo", keys([a-E]))
Item ("ANSI Graphics Mode", keys([a-G]))
Item ("Program Info", Keys([a-I]))
Item ("ANSI Music Mode", keys([a-M]))
Item ("Split Screen Mode", keys([a-S]))
Item ("Screen Dump", keys([a-T]))
Item ("Xon / Xoff", keys([a-Z]))
Item ("Primary Menu", Menu(Main))
; common items
Item ("Secondary Menu", Menu(Second))
Item ("Download Files", Keys([PgDn]))
Item ("Upload Files", Keys([PgUp]))
Item ("Capture File toggle", Keys([c-Home]))
Item ("Scroll Back", Keys([Up]))
Item ("Send Break", keys([c-End]))
Item ("Line Feed toggle", keys([s-Tab]))
Item ("Printer echo toggle", Keys([c-PrtSc]))
)
;
; Mouse Definition
;
Mouse
(
Left (LB)
Middle (MB)
Right (RB)
LeftRight (LRB)
)